home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / MAKEFILE.TXT < prev    next >
Text File  |  1997-07-26  |  2KB  |  55 lines

  1. *** Command Line Compiler Setup Notes
  2.  
  3. Your command line compiler tools must be set up properly.  Note that you have
  4. an option of installing the command line tools (or not) when your compiler is
  5. first installed. Refer to your compiler manufacturer's manual for details.
  6.  
  7. For ALL compilers, your path should point to the compiler BIN directory.
  8. For example, to add "C:\BC50\BIN" to your existing path, use
  9.  
  10.    PATH C:\BC50\BIN;%PATH%
  11.  
  12.    *** MICROSOFT
  13.  
  14.    Set LIB and INCLUDE environment variables. For example,
  15.  
  16.       SET INCLUDE=C:\MSVC\INCLUDE
  17.       SET LIB=C:\MSVC\LIB
  18.  
  19.    *** BORLAND
  20.  
  21.    Check that TURBOC.CFG, BCC32.CFG, TLINK.CFG, and TLINK32.CFG all have
  22.    the correct information in them, as they should have when your compiler
  23.    was installed.
  24.  
  25.    Set the INCLUDE environment variables. For example,
  26.  
  27.       SET INCLUDE=C:\BC50\INCLUDE
  28.  
  29.    BRCC doesn't use any *.CFG files, but will use INCLUDE if set as above.
  30.  
  31.    If "SET LIB=" is used, it MUST point Borlands LIB directory. Assuming that
  32.    TURBOC.CFG is correct, it is best to clear the LIB environment variable with
  33.  
  34.       SET LIB=
  35.  
  36.    *** WATCOM
  37.  
  38.    Set the WATCOM environment variables to point to your compilers include (H)
  39.    and BIN directories. For example,
  40.  
  41.    SET INCLUDE=C:\WC106\H;C:\WC106\H\NT
  42.    SET WATCOM=C:\WC106
  43.    SET EDPATH=C:\WC106\EDDAT
  44.    SET WWINHELP=E:\BINW
  45.  
  46. The above commands should be executed from a batch file. For example, create
  47. the file USE_MSC.BAT containing the 3 lines
  48.  
  49.    PATH C:\MSVC\BIN;%PATH%
  50.    SET INCLUDE=C:\MSVC\INCLUDE;C:\MSVC\MFC\INCLUDE
  51.    SET LIB=C:\MSVC\LIB;C:\MSVC\MFC\LIB
  52.  
  53. Then type USE_MSC to set up your compiler's command line tools. Alernatively,
  54. you can put "CALL USE_MSC" into you AUTOEXEC.BAT file.
  55.